home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / itc / sld / Makefile < prev    next >
Encoding:
Makefile  |  1992-05-12  |  596 b   |  22 lines

  1. # The FIRST_BYTE preprocessor variable should be set to HIGH if the
  2. # host machine puts the most significant byte of a number first (e.g.
  3. # 68000s), and otherwise should be set to LOW (e.g. VAXes).
  4. # The FLOATING_FORM variable should be set to IEEE if the host machine
  5. # uses IEEE format, or else to OTHER.
  6. #
  7. # $Header: /sprite/src/benchmarks/itc/sld/RCS/Makefile,v 1.2 92/05/12 14:59:24 kupfer Exp $
  8. #
  9.  
  10. OBJS        = sld.o bsearch.o 
  11.  
  12. CFLAGS        = -O -DFIRST_BYTE=LOW -DFLOATING_FORM=IEEE \
  13.             -DTARGET=HOST -I../sas
  14.  
  15. ../bin/sld:        $(OBJS)
  16.     $(CC) $(OBJS) -o ../bin/sld
  17.  
  18. clean:
  19.     rm -f *.o ../bin/sld
  20.